home *** CD-ROM | disk | FTP | other *** search
- 100 rem echtzeituhr stellen
- 110 cia=56328:rem anfangsadresse von cia 1
- 120 print"geben sie die genaue uhrzeit ein"
- 130 print" hhmmss[157][157][157][157][157][157][157][157]";:inputz$
- 140 hh=val(left$(z$,2))
- 150 mm=val(mid$(z$,3,2))
- 160 ss=val(right$(z$,2))
- 170 ifhh>23ormm>59orss>59thenprint"eingabefehler":goto120
- 175 if hh>12thenhh=hh-12:tm=1
- 180 poke cia+7, peek(cia+7) and 255-2^7
- 190 poke cia+6, peek(cia+6) or 2^7
- 200 q= int(hh/10)*16+hh-int(hh/10)*10
- 205 if tm=1 then q=q+128
- 210 poke cia+3,q
- 220 q= int(mm/10)*16+mm-int(mm/10)*10
- 230 poke cia+2,q
- 240 q= int(ss/10)*16+ss-int(ss/10)*10
- 250 poke cia+1,q
- 260 poke cia+0,0: rem uhr starten
- 300 rem echtzeituhr lesen
- 310 cia=56328:rem anfangsadresse von cia 1
- 320 hh=peek(cia+3):zs=peek(cia)
- 330 mm=peek(cia+2)
- 340 ss=peek(cia+1)
- 350 tm=0: if hh>128 then tm=1:hh=hh-128:rem nachmittags
- 360 hh=int(hh/16)*10+(hh and 15)
- 370 if tm=1 and hh<>12 then hh=hh+12
- 375 if tm=0 and hh=12 then hh=0
- 380 mm=int(mm/16)*10+(mm and 15)
- 390 ss=int(ss/16)*10+(ss and 15)
- 400 print"[147]"hh":"mm":"ss
- 410 goto320
-